Cropland Data Layer

The purpose of the Cropland Data Layer is to use satellite imagery to provide acreage estimates to the Agricultural Statistics Board for major commodities and to produce digital, crop-specific, categorized geo-referenced output products. The spatial resolution is 30 meters covering the Continental United States. However, the data was filter to just Northampton and Accomack County for this project. The years of avaiable data for these two counties were 2021 to 2008 and 2002. The orginal CDL data can be found here.

The CDL data is avaiable in raster-based GeoTIFF (.TIF) file format or can be obtain as a simple features object through an R Package called 'CropScapeR'. The data was import through 'CropScapeR' because the geometry was necessary to link this Cropland Data Layer to counties' parcel geometries. The cooridinates of the CDL data are the coordinates of the centroid of the raster cells in a point geometry. From these centroids, a buffer was added to create the 30x30m resolution and polygon geometry. This was essential step to be able to intersect with the counties' parcel geometries in order to find the area of each crop in specific parcels. Two checks were in place to ensure this buffer was preformed correctly. First, an area column was added to the dataset to ensure each tile had an area of 900 square meters. Second, the first 30 tiles were simply ploted to ensure no overlap. (see plot below)

C-CAP Regional Land Cover and Change

The Land Cover and Change data documents the types of features that cover the surface of the Earth. These data quantify how much of a region is covered by forest, wetlands, impervious surfaces, and argiculture- as well as these feature's locations. This data is avaiable every 5 years for Northampton and Accomack County. These years include 1996, 2001, 2006, 2010, 2016. CCAP data is aviable as a simple feature object. This data was manipulated similarly to the CDL data to get the percent area of land cover in each parcels. Below is a example of the CCAP data for 2016 after manipulation and a plot of 8 different types of landcover in the Eastern Shore of Virginia.

Parcels Data

The counties of Northampton and Accomack are divided up into parcels. Parcels are very small geographies at the sub-county level. In Northampton county, there are 16,123 total parcels and in Accomack county there are 48,435 parcels. These parcels are a consistent sub-county unit of measure that will be utilized throughout the course of this project. The table below is a snapshot of the parcel data as a simple features object. This data interacts with the Regional land Cover and Change, Cropland Data Layer, and the housing data.

These two plots show the parcels boundaries within the two seperate counties. Eastern Shore of Virginia Parcel Plot

Housing Data

The Data & Analytics division of Black Knight manages the nation's leading repository of loan-level residential mortgage data and performance information. They have housing information for the Eastern Shore that includes the coordinates of the houses. This data is used as the household that the syntheic population is placed in.

American Community Survey

ACS Public Use Microdata Sample

From the ACS Public Use Microdata Surevy, 3,851 unique serial number were collected from the Middle Peninsula, Northern Neck & Accomack-Northampton Planning District Commissions PUMA. This data was filtered down to age, race, household income, and tenure for each serial number and cleaned to match the terms in the ACS tables that are used to create the synthetic population. This cleaned data set is randomly sampled with replacement through the iterative proportional fitting technique to create the synthetic population and placed into households. The dataframe below shows the categories as well as the frequency of times they appear.

ACS Tables

  • B19037A-G: Age of Householder by Household Income by Race
  • B25007: Tenure by Age of Householder
  • B25003A-G: Tenure by Race

These tables all come from the year 2020 and are at the census tract level. An IPF out-put was calculated from these tables from every census tract listed below. The the serial numbers from the microdata are sampled with replacement to match each cell from the IPF output to create synthetic household.

Northampton Census Tracts - 51-131-930100
- 51-131-930200
- 51-131-930302
- 51-131-930301
- 51-131-990100

Accomack Census Tracts - 51-001-090300
- 51-001-090800
- 51-001-990200
- 51-001-090600
- 51-001-990100
- 51-001-090500
- 51-001-090700
- 51-001-980200
- 51-001-980100
- 51-001-090202
- 51-001-090402
- 51-001-090401
- 51-001-090201
- 51-001-090102
- 51-001-090101

hey